home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / os2 / pmaud11.zip / AUDT.C next >
C/C++ Source or Header  |  1996-04-05  |  507b  |  29 lines

  1. /*
  2.  * audT v1.1
  3.  *
  4.  * Text-version of PMaud. Runs well from a .CMD file.
  5.  *
  6.  *  Feel free to use this code, just drop me an email so I know you are getting
  7.  *   some use out of them. (warped42@ix.netcom.com)
  8.  *
  9.  *   Written by Ryan C. Gordon, 1996.
  10.  */
  11.  
  12. #include "mciplay.h"
  13. #include <stdlib.h>
  14.  
  15. int main(int argc, char **argv)
  16. {
  17.     MCIPLAYARGS mcip;
  18.  
  19.     _wildcard(&argc, &argv);
  20.  
  21.     mcip.ARGC = argc;
  22.     mcip.ARGV = argv;
  23.  
  24.     mciplay(&mcip);
  25.  
  26.     return(0);
  27. } /* main */
  28.  
  29. /* end of audt.c */